home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
applications
/
wp
/
ged11.lha
/
Install
/
data
/
main
/
GoldED
/
ARexx
/
unLock.ged
< prev
Wrap
Text File
|
1993-06-23
|
448b
|
22 lines
/* $VER 0.9, ©1993 Dietmar Eilert. Unlock GUI. */
/*
Useful if some script failed, leaving the editor in a deadlock situation
(GUI locked). DO NEVER CALL THIS MACRO UNLESS YOU HAVE TO DO SO. It is
dangerous. If you unlock the GUI while some other ARexx script is
controlling GoldED, the system might break.
*/
do n = 1 to 5
name = 'GOLDED.' || n
if show('p', name) then do
address value name
'UNLOCK'
end
end